指定された配列 T[] データをメモリの場所に書き込みます。
シンタックス
'宣言
Public Overloads Shared Function Write(Of As {New, Struct})( _
ByVal As System.IntPtr, _
ByVal () As , _
ByVal As System.Integer, _
ByVal As System.Integer _
) As System.IntPtr
public static System.IntPtr Write<>(
System.IntPtr ,
[] ,
System.int ,
System.int
)
where T: new(), struct
パラメータ
- destination
- 書き込むメモリの場所。
- data
- 書き込む T データの配列。
- offset
- 読み取る配列内のオフセット。
- count
- メモリの場所から書き込む T 要素の数。
型パラメータ
- T
- 書き込むデータのタイプ。
戻り値の型
宛先ポインタ + sizeof(T) * 数
参照